home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / crnjr255.zip / ERROR.LOG < prev    next >
Text File  |  1994-07-27  |  4KB  |  78 lines

  1.  
  2.                CronJr Bug Fixes & Compatability Problems
  3.  
  4.  
  5. 07/14/94 - Version 2.55 fixes the problem when pressing F1 when the
  6.            DOS shell is disabled.  Pressing F1 would incorrectly
  7.            cause immediate evaluation.
  8.  
  9. 11/26/93 - Version 2.51 increases the number of entries allowed in the
  10.            CronJr.sch file.  We thought it was unlimited, but we
  11.            were wrong.  Version 2.50 will hang immediately if there are
  12.            70 or more entries in the schedule file.  This was due to
  13.            compiling in the tiny memory mode, which only allows 64k
  14.            for program and code.  The other problem was that memory
  15.            for the schedule was being calloc'd as a block.  Calloc'd
  16.            blocks are currently limited to 64k, thus limiting the
  17.            number of entries in the schedule file.  The calloc'd blocks
  18.            have been replaced with linked lists, and the memory mode
  19.            has been changed to compact, which allows 1 meg for data.
  20.            After all these changes, there still is a limit to the
  21.            number of items in the CronJr.sch file - about 840 for a
  22.            machine with 490k free.
  23.  
  24. 03/05/93 - Version 2.49 fixes the ROOT installation problems.  The
  25.            CronJr.BAT file was writing incorrectly writing two \'s
  26.            for directory changes and program execution.
  27.  
  28.            Version 2.48 changed the immediate evalation key from ENTER
  29.            to  E  .  People were experiencing problems on Novell networks
  30.            where their CronJr scripts were logging in and out of networks.
  31.            They were experiencing anywhere from 1 to 10 executions per
  32.            minute.  This was due to a "feature" of both the Netware login
  33.            script and CronJr.  Some Netware login scripts stuff an
  34.            ENTER into the keyboard upon returning to DOS.  That ENTER
  35.            was being interpreted by CRONJR as an immediate schedule
  36.            evaulation and thus resulting in another execution of the
  37.            CronJr job.  By changing the immediate evaluation key from
  38.            ENTER to  E  fixed this problem.
  39.  
  40. 05/16/92 - Some non 100% Microsoft compatable command interpreters may
  41.            cause problems with the creation of the CronJr.LOG file.
  42.            The CronJr.LOG file is created via the DOS command line using
  43.            the  >>  output redirectors.  The  >>  redirector appends to
  44.            a file.  Some Command.COM substitutes such as some versions
  45.            of 4DOS do not work properly.  The  >>  redirector in 4DOS
  46.            always creates a file, rather than appending to a file.
  47.            This problem may not be limited to 4DOS.  It is easy to test
  48.            for this problem by typing the following at your DOS prompt.
  49.  
  50.             c:\> echo does >  kk
  51.             c:\> echo this >> kk
  52.             c:\> echo work >> kk
  53.  
  54.            The resulting file named KK should contain 3 lines.
  55.  
  56. 05/11/92 - Due to a bug in the Borland Turbo C 1.5 time functions, the
  57.            clock would jump 1 hour on April 28, 1992 at 2:00 am and
  58.            remain 1 hour ahead until April 29, 1992 at 2:00 am when it
  59.            would jump back an hour.  This bug has been acknowledged by
  60.            Borland and the CronJr and TimeNow programs have been
  61.            recompiled with a later release of the C compiler.
  62.            Wildcarded minutes are no longer valid.  The problem of mixing
  63.            incremental minutes and hours has been fixed and limited by
  64.            the EditCron program.
  65.  
  66. 08/25/91 - Versions 2.24 and 2.25 were writing garbage parameters into the
  67.            CRONWK.BAT file.  It worked great as long as you only had one
  68.            entry in the CRONJR.SCH file.  Changed token scanning code and
  69.            tested and tested and tested.
  70.  
  71. 08/01/91 - Installation process ( CRON START ) was not working correctly
  72.            for DOS versions 4.0 and above.  CronJr treated DOS 4.0 and
  73.            higher as if it was a version below 3.3.   Oops.  We plead
  74.            stupidity.  If you have DOS version 4.0 or above, and have
  75.            installed CRONJR, you should recreate the CRONJR.BAT file
  76.            by running CRON START with the new version of CRON .
  77.  
  78.